home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / upc12bs1.zip / LIB / getopt.h < prev    next >
C/C++ Source or Header  |  1992-11-27  |  291b  |  15 lines

  1. /*
  2.  
  3.    getopt.h
  4.  
  5.    Update history:
  6.  
  7.       01Oct89 Add function prototype for getopt                      ahd
  8.   */
  9.  
  10. #define getopt(x,y,z)   GETOPT(x,y,z)  /* Avoid GNU conflict   */
  11. extern int getopt(int argc, char **argv, char *opts);
  12.  
  13. extern int optind;
  14. extern char *optarg;
  15.